home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / misc / memtest.lha / read.me < prev   
Text File  |  1993-02-01  |  2KB  |  56 lines

  1. /*
  2.  * System Memory test routine
  3.  * Version 4.1
  4.  * Copyrighted by Custom Services 1987 ***All rights reserved***
  5.  *
  6.  * This routine will run standard memory tests on your
  7.  * memory.  The options are:
  8.  * -F Test External memory
  9.  * -S Test System Chip memory
  10.  * -L Long memory test enabled
  11.  * -V Verbose messages
  12.  * -D Debug messages
  13.  * -A all memory tests(except long)
  14.  * -B Sum Test only
  15.  * -E Values test only
  16.  *
  17.  * Chip memory will be tested first if requested then Fast memory
  18.  *
  19.  * Memory will be allocated using the standard system allocation
  20.  * routines.  What ever memory is left when this program runs will
  21.  * be tested.  A linked list of memory is made for both Chip and
  22.  * Fast memory.
  23.  *
  24.  * The Long test will run faster on very fragmented memory(small blocks)
  25.  * but will be more effective on unfragmented memory.  This test will
  26.  * take a very long time( time is proportional to Memory squared)
  27.  *
  28.  * The Values tests on each block will be:
  29.  *   a) zero/non zero byte
  30.  *   b) alternating bit test
  31.  *   c) do all locations in block
  32.  * The Long test is in addition to the Value test.  For each value
  33.  * tested in the Values test:
  34.  *   a) complement the value
  35.  *   b) check each location to if bits changed
  36.  *   c) check complemented location for bits changed
  37.  *   d) do all locations in block
  38.  * The Sum test on each block will be:
  39.  *   a) store sum of upper 16 bits of address plus lower 16 bits
  40.  *   b) check contents after all are stored.
  41.  *   c) do all locations in block
  42.  * The Sum test is good for dynamic memory failures.
  43.  * The Value and Long tests are good for Hard failures.
  44.  */
  45.  
  46. This program is shareware.  You may freely distribute it.  If you use
  47. it, you may wish to register it.  Registrations fee:$10.00.
  48.  
  49. The advantages of registration are:
  50.  
  51.    -- Updates will be made available to you
  52.    -- Other Custom Services programs will be made available to you.
  53.    -- STU, the Amiga Diagnostic(normal list price of $34.95) will
  54.       be available for $20.00 plus s&h.  STU is a better memory tester
  55.       (much faster, better tests) plus a disk drive test program!
  56.